home *** CD-ROM | disk | FTP | other *** search
/ Suzy B Software 2 / Suzy B Software CD-ROM 2 (1994).iso / bootup / boot_a2m / mytime6 / mytime6.lst < prev    next >
Encoding:
File List  |  1995-05-02  |  853 b   |  34 lines

  1. ' Braun's Nifty Keyboard Clock Setter
  2. '
  3. ' Use this file in the auto folder to set your IKBD clock from your
  4. ' system clock.  This file is usefull to those of you who have a
  5. ' clockcard that sets the system clock but not the IKBD clock.
  6. '
  7. ' This file is written in compiled GFA Basic and is released to the
  8. ' public domain by;
  9. '
  10. ' Braun Tacon
  11. ' Marysville, CA.
  12. ' CIS (74736,2613)
  13. ' GENIE (XTA 02273)
  14. '
  15. Dim Title$(25)
  16. Dim Title2$(25)
  17. Dim Title3$(25)
  18. Dim Title4$(25)
  19. Title$="SETTING YOUR CLOCK WITH,"
  20. Title2$="THE MAGIC OF 'GFA'."
  21. Title3$="This is my first GFA Hack,"
  22. Title4$="I LIKE it!!! (GFA of course)."
  23. Print At(5,5);Title$
  24. Print At(5,10);Title2$
  25. Print At(5,15);Title3$
  26. Print At(5,20);Title4$
  27. ' GETTING THE DATE FROM THE SYSTEM
  28. D=Gemdos(42)
  29. ' NOW LETS GRAB THE TIME
  30. T=Gemdos(44)
  31. ' OK...DO IT!!!
  32. Void Xbios(22,D,T)
  33. End
  34.